home *** CD-ROM | disk | FTP | other *** search
- #include <MacTypes.h>
- #include "QuickDraw.h"
- #include <WindowMgr.h>
- #include <MenuMgr.h>
- #include <EventMgr.h>
- #include "Skel defines.h"
- /*
- Globals
- */
- GrafPtr screenport; /* a port for the whole screen */
- WindowPtr mywindow; /* our one window */
- WindowRecord wrecord; /* storage for window record */
- Rect dragrect; /* Rect to drag within */
- Rect growrect; /* bounds for the growth of the windows */
-
- MenuHandle mymenus[lastmenu + 1];/* our menus */
-
- EventRecord myevent;
- WindowPtr whichwindow; /* points to window of mouseDown */
- int windowcode; /* what mouse was in when event posted */
- Boolean userdone; /* true when user wants to exit program */
-